Release 0.11.0 repo workflow contract#25
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Prepares the 0.11.0 release by adding a repo-centric “workflow contract” to dev.kit, dev.kit env, and dev.kit repo, plus a read-only-by-default real-repo validation probe driven by repo-owned config. This aligns CLI output with an explicit loop of context generation, gap detection, and repair steps.
Changes:
- Add
workflowstructures to JSON and text output fordev.kit(home),dev.kit env, anddev.kit repo. - Introduce repo-owned real-repo probe defaults (
src/configs/repo-validation.yaml) and updatetests/real-repos.shto support--check|--writeand produce JSON reports. - Update fixtures/docs/tests to reflect the new workflow output and refined “read-first refs” behavior for nested
.rabbit/infra_configs/**manifests.
Reviewed changes
Copilot reviewed 18 out of 20 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/suite.sh | Extends core test assertions for new workflow output and updated references/refs handling. |
| tests/real-repos.sh | Adds --check/--write, guarded JSON reporting, and summary output for probing real repos. |
| tests/fixtures/docker-repo/.rabbit/infra_configs/staging/k8s-configmap.yaml | Adds a nested .rabbit/infra_configs fixture manifest for refs/manifest inventory behavior. |
| src/templates/repo.json | Adds top-level workflow field to dev.kit repo --json output template. |
| src/configs/repo-validation.yaml | Adds repo-owned defaults and matrices for real-repo validation probes and recommended repos. |
| README.md | Links new real-repo validation doc and updates example invocation to --check. |
| package.json | Bumps version to 0.11.0. |
| lib/modules/repo_workflows.sh | Introduces workflow status/steps + JSON job/step serialization for repo workflows. |
| lib/modules/repo_signals.sh | Excludes nested .rabbit/*/* manifests from “read-first” manifest refs output. |
| lib/modules/repo_factors.sh | Adds local-reference selection helpers and adapts factor reference selection to repo context. |
| lib/modules/config_catalog.sh | Adds helpers to locate/read the new repo validation config. |
| lib/commands/repo.sh | Adds workflow block to repo command JSON and renders workflow section in text output; pulls recommended repos from config. |
| lib/commands/env.sh | Adds workflow block to env JSON and renders workflow section in text output. |
| docs/repo-contract-boundary.md | Clarifies structured vs prose sources and how they should be used. |
| docs/real-repo-validation.md | New documentation for running real-repo probes in check/write modes. |
| docs/context-coverage.md | Adds guidance on treating structured sources as deterministic and prose as interpreted intent. |
| changes.md | Updates changelog for 0.11.0 release notes. |
| bin/scripts/install.sh | Adds an additional dev-kit symlink alongside dev.kit. |
| bin/dev-kit | Adds workflow status computation and JSON/text rendering to the home command. |
| .rabbit/context.yaml | Updates generated context to reflect 0.11.0 and new manifests/refs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
udx-github
previously approved these changes
May 19, 2026
udx-github
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
0.11.0release with repo-centric workflow status indev.kit,dev.kit env, anddev.kit repoTesting
bash tests/suite.sh --only corebash -n tests/real-repos.shgit diff --check./bin/dev-kit --version./bin/dev-kit repo --json --check | jq '{context_status: .workflow.jobs[0].context_status, gap_count: .workflow.jobs[0].gap_count, recommended_repos: .recommended_repos}'Notes
.rabbit/infra_configs/**remains part of manifest/context validation, but nested environment manifests are excluded from noisy first-read refs.